*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo{
    width: 150px;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
}
.nav-txt{
    display: flex;
    align-items: center;
}
.nav-txt ul{
    display: flex;
    align-items: center;
    gap: 2em;
    list-style-type: none;
}
.nav-txt ul li a{
    text-decoration: none;
    color: black;
    font-size: 1.1em;
    font-weight: 500;
}
nav span{
    border: 2px solid black;
    padding: 10px 25px;
    border-radius: 5px;
    background-color: black;
}
nav span a{
    color: white;
    text-decoration: none;
}
#country{
    padding: 10px 2px;
    width: 50px;
}
.fa-bars{
    display: none;
    font-size: 3em;
    padding-top: 10px;
}
.prod-dropdown{
    position: absolute;
    background-color: white;
    width: 16%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px rgba(128, 128, 128, 0.61);
    top: 90px;
    left: 530px;
    z-index: 999;
}
.prod{
    width: 60%;
    margin: auto;
    line-height: 40px;
    display: none;
}
.menu1 .prod-dropdown .prod li a{
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.menu1:hover .prod{
    transition: 1s;
    display: block;
}


/*--media query--*/
@media screen and (min-width:120px) and (max-width:500px){
    header{
        width: 100%;
    }
    nav{
        display: flex;
        justify-content: space-between;
    }
    .logo{
        width: 150px;
        padding-right: 50px;
    }
    .nav-txt ul li {
        display: none;
    }
    .fa-bars{
        display: block;
    }
    nav span {
        display: none;
    }
}
@media screen and (min-width:320px) and(max-width:900px) {
    .nav-logo{
        width:200px ;
        padding-right: 50px;
    }
    nav{
        display: flex;
        justify-content: space-between;
    }
    .nav-txt ul li{
        display: none;
    }
    .fa-bars{
        display: block;
    }
}
@media screen and (min-width:400px) and (max-width:900px)  {
    .nav-txt ul li{
        display: none;
    }
    .fa-bars{
        display: block;
    }
}
@media screen and (min-width:900px) and (max-width:1200px) {
    nav{
        width: 100%;
        justify-content: space-between;
    }
    .nav-txt ul li {
        display: none;
    }
    .fa-bars{
        display: block;
        font-size: 3em;
    }
    .nav-txt span a{
        font-size: 2.5em;     
    }
}


.bankacct-hero{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
    margin-top: 100px;
    margin-bottom: 100px;
}
.bnk-herosect{
    width: 100%;
    margin: auto;
}
.bankphn-img{
    width: 320px;
}
.banktext h3{
    font-size: 1.2em;
    border: 2px solid black;
    border: none;
    padding: 10px 45px;
    border-radius: 20px 20px;
    margin-bottom:30px  ;
    background-color: #f0f8f4;
}
.banktext h1{
    font-size: 3em;
    margin-bottom: 40px;
}
.banktext h1 span{
    color:#37A477 ;
}
.banktext p{
    font-size: 1.2em;
    color: #52524c;
    margin-bottom: 30px;
}
@keyframes pushupdown{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-5px);
    }
    100%{
        transform: translateY(0);
    }
}

.gp-icon:hover{
     transform: translateY(-10px);
     animation: pushupdown 1s;
}

.apple-icon:hover{
     transform: translateY(-10px);
     animation: pushupdown 1s ;
}
.logo-txt{
    display: flex;
    align-items: center;
    gap: 5em;
    margin-top: 30px;
    color: rgba(160, 157, 157, 0.479)
}
.logo-txt1{
    font-size: 0.5em;
}
.logo-txt2{
    font-size: 0.5em;
    padding-left: 100px;
}


.license-logo{
    width: 45px;
    border: 2px solid black;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    background-color: #EBF6F1;
}
.cbn-logo{
    width: 150px;
}
.ins-icon{
    width: 50px;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px 15px;
    border: none;
    background-color: #EBF6F1;
}
.ndic-logo{
    width: 80px;
}
.qrcode{
    width: 40px;
    height: 50px;
}
.ins-logo{
    justify-content: space-around;
    align-items: center;
    padding-bottom: 32px;
    display: flex;
    padding-right: 250px;
}
.license-div{
    display: flex;
    align-items: center;
    gap: 1em;
}
.qrcode-div{
    display: flex;
    align-items: center;
    border: 2px solid rgba(128, 128, 128, 0.164);
    border-radius: 10px;
    gap: 1.5em;
    padding: 10px 40px;
}
.qrcode-div span{
    font-size: 1em;
    color: rgb(109, 87, 87);
}

/*--MD Query--*/
@media screen and (min-width:120px) and (max-width:800px) {
    .bankacct-hero{
        display: block;
        margin-top: 50px;
        padding: 30px;
        margin-bottom: 50px;
    }
    .banktext h3{
        font-size: 1.3em;
    }
    .banktext h1{
        font-size: 2em;
    }
    .bnk-herosect{
        width: 100%;
    }
}
@media screen and (min-width:800px) and (max-width:1200px) {
    .bankacct-hero{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 50%;
        padding: 30px;
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .banktext h3{
        font-size: 1.5em;
    }
    .banktext h1{
        font-size: 2.5em;
    }
    .bnk-herosect{
        width: 100%;
    }
    .banktext p{
        font-size: 1.5em;
        
    }
    .banktext h3{
    font-size: 1.1em;
    padding: 15px 20px;
}
}


.sect2-bnkacct{
    width: 90%;
    margin: 0px auto;
    padding-bottom: 100px;
    overflow: hidden;
}
.sect2-h1{
    font-size: 1.5em;
    margin-bottom: 50px;
    padding-left: 30px;
}
.card-body{
    background-color:#F5F8FE ;
    height: 55vh;
}
.card{
    border: none;
}
.cardsect{
    padding: 30px;
}
@media screen and (min-width:800px) and (max-width:1280px) {
    .sect2-bnkacct{
    width: 100%;
    margin: 0px auto;
    padding-bottom: 100px;
}
.card-body{
    height: 45vh;
}
.sect2-h1{
    font-size: 2.8em;
}
.card-text {
    font-size: 1.1em;
}
}

.accordion{
    width: 75%;
    margin: 0px auto;
    padding-bottom: 50px;
}
.accordion h1{
    font-size: 2em;
    margin-bottom: 30px;
    padding-left: 60px;
}
.accordion-button h3{
    font-size: 1.3em;
}
.accordion-body p{
    font-size: 1em;
}
.accordion-item{
    margin-bottom: 30px;
}
.accordion-button{
    padding: 10px;
}
@media screen and (min-width:120px) and (min-width:800px) {
    .accordion{
        width: 100%
    }
    accordion h1{
        font-size: 3em;
    }
    .accordion-button h3{
        font-size: 1em;
    }
    .accordion-body p{
        font-size: 1em;
    }
    .accordion-body li{
        font-size: 1em;
    }
}
@media screen and (min-width:800px) and (max-width:1300px) {
    .accordion{
        width: 75%;
    }
    .accordion h1{
        font-size: 3em;
    }
    .accordion-button h3{
        font-size: 1.8em;
    }
    .accordion-body p{
        font-size: 1.5em;
    }
    .accordion-body li{
        font-size: 1.3em;
    }
}
/*--footer-*/

footer{
    background-color:#171D32 ;
}
.footer-div{
    padding-top: 50px;
    padding-bottom: 58px;
    width: 80%;
    margin: 0px auto;
}
.li-div{
    display: flex;
    gap: 2em;
    margin-bottom: 60px;
}
.li-div ul li a{
    color: white;
    font-size: 1.1em;
    text-decoration: none;
    line-height: 30px
}
.li-div ul li a:hover{
    color: #8DEEC8;
}
.footer-div h4{
    color: white;
    font-size: 1.5em;
    padding-left: 30px;
}
.buttom-li ul{
    display: flex;
    gap: 2em;
    margin-bottom: 15px;
}
.buttom-li ul a{
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}
.buttom-li ul a:hover{
    color: #8DEEC8;
}
.footer-div p{
    color: white;
    font-size: 1.1em;
    padding-left: 30px;
}

.footer-img{
    padding-left: 400px;
    padding-top: 80px;
    line-height: 50px;
    width: 50px;
}
.sm-handles{
    display: flex;
    gap: 2.3em;
    padding-left: 40px;
}
.fbk{
    width: 10px;
    cursor: pointer;
}
.twitter{
    width: 20px;
    cursor: pointer;
}
.gp-icon:hover{
     transform: translateY(-10px);
     animation: floatUpDown 2s ease-in-out;
}

.apple-icon:hover{
     transform: translateY(-10px);
     animation: floatUpDown 2s ease-in-out;
}
@keyframes floatUpDown{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-5px);
    }
    100%{
        transform: translateY(0);
    }
}
/*--MD Query--*/
@media screen and (min-width:120px) and (max-width:800px){
    .footer-div{
        width: 80%;
        margin: 0px auto;
    }
    .li-div{
        display: block;
        margin-bottom:0px;
    }
    
    .buttom-li ul{
        display: block;
    }
    .sm-handles{
        padding: 20px;
    }
    .footer-img{
    padding-left: 30px;
    padding-top: 0px;
    line-height: 50px;
    width: 40px;
    }
}
@media screen and (min-width:800px) and (max-width:1300px){
    .li-div ul li a{
        font-size: 1.5em;
        line-height: 1.5em;
    }
    .li-div ul li{
        list-style-type: none;
    }
    .buttom-li ul li{
        list-style-type: none;
    }
    .footer-div{
        width: 80%;
        margin: 0px auto;
    }
    .footer-img{
    padding-left:-0px;
    padding-top: 0px;
    line-height: 50px;
    width: 30px;
    }
    .sm-handles{
        padding-right: 20px;
    }
    .buttom-li ul{
    display: flex;
    gap: 2em;
    font-size: 1.2em;
}
.footer-div p{
    font-size: 1.2em;
}
}


    
    
